From: Eli Zaretskii Date: Sat, 28 Jul 2007 08:10:54 +0000 (+0000) Subject: (install-arch-indep): Use "rm -f" for removing DOC, to avoid an error message X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~534^2~3^2~2023 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=7b5a4dcc222d0e05ac39b30a5464a567fe13962c;p=emacs.git (install-arch-indep): Use "rm -f" for removing DOC, to avoid an error message if there is no DOC there. --- diff --git a/Makefile.in b/Makefile.in index 2959c9d7e12..502e653ccec 100644 --- a/Makefile.in +++ b/Makefile.in @@ -478,7 +478,7 @@ install-arch-indep: mkdir info (cd ./etc; tar -chf - DOC*) \ |(cd $(DESTDIR)${docdir}; umask 022; tar -xvf - && cat > /dev/null) || exit 1; \ (cd $(DESTDIR)$(docdir); chown $${LOGNAME:-$$USERNAME} DOC*; chmod a+r DOC*; \ - if test "`echo DOC-*`" != "DOC-*"; then rm DOC; fi); \ + if test "`echo DOC-*`" != "DOC-*"; then rm -f DOC; fi); \ else true; fi -unset CDPATH; \ if [ -r ./lisp ] \